<?php 
function strRand($length=11){
  return 
substr(str_shuffle(str_repeat('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_',5)), 0$length);
}

echo 
strRand();
1